Re: [SQL] idiom to move records? - Mailing list pgsql-sql

From Herouth Maoz
Subject Re: [SQL] idiom to move records?
Date
Msg-id l03110701b259f11ba64d@[147.233.159.109]
Whole thread Raw
In response to idiom to move records?  (Leslie Mikesell <les@Mcs.Net>)
List pgsql-sql
At 7:31 +0200 on 26/10/98, Leslie Mikesell wrote:


> Is there a handy way to move a set of records to a different
> table in sql?  I'd like to do this based on a WHERE clause
> and have it work atomically such that it will not lose new
> records added between the step that copies to the other table
> and deleting the copied records.

Do it in a transaction, then. Assuming that the target table is defined
(not a temporary table you create ad-hoc), you do:

BEGIN TRANSACTION;

LOCK TABLE source_table;

INSERT INTO target_table (col1, col2, col3)
SELECT (expr1, expr2, expr3)
FROM source_table
WHERE <where condition here>;

DELETE FROM source_table
WHERE <where condition here>;

COMMIT;



Herouth

--
Herouth Maoz, Internet developer.
Open University of Israel - Telem project
http://telem.openu.ac.il/~herutma



pgsql-sql by date:

Previous
From: Mike Meyer
Date:
Subject: Help on extensended attribute types?
Next
From: jwieck@debis.com (Jan Wieck)
Date:
Subject: Re: [SQL] idiom to move records?